home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / search.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  2.0 KB  |  33 lines

  1. /* search.c */
  2. int search_regcomp __ARGS((char_u *pat, int pat_save, int pat_use, int options, regmmatch_T *regmatch));
  3. char_u *get_search_pat __ARGS((void));
  4. void save_search_patterns __ARGS((void));
  5. void restore_search_patterns __ARGS((void));
  6. int ignorecase __ARGS((char_u *pat));
  7. char_u *last_search_pat __ARGS((void));
  8. void set_last_search_pat __ARGS((char_u *s, int idx, int magic, int setlast));
  9. void last_pat_prog __ARGS((regmmatch_T *regmatch));
  10. int searchit __ARGS((win_T *win, buf_T *buf, pos_T *pos, int dir, char_u *str, long count, int options, int pat_use));
  11. int do_search __ARGS((oparg_T *oap, int dirc, char_u *str, long count, int options));
  12. int search_for_exact_line __ARGS((buf_T *buf, pos_T *pos, int dir, char_u *pat));
  13. int searchc __ARGS((cmdarg_T *cap, int t_cmd));
  14. pos_T *findmatch __ARGS((oparg_T *oap, int initc));
  15. pos_T *findmatchlimit __ARGS((oparg_T *oap, int initc, int flags, int maxtravel));
  16. void showmatch __ARGS((void));
  17. int findsent __ARGS((int dir, long count));
  18. int findpar __ARGS((oparg_T *oap, int dir, long count, int what, int both));
  19. int startPS __ARGS((linenr_T lnum, int para, int both));
  20. int fwd_word __ARGS((long count, int bigword, int eol));
  21. int bck_word __ARGS((long count, int bigword, int stop));
  22. int end_word __ARGS((long count, int bigword, int stop, int empty));
  23. int bckend_word __ARGS((long count, int bigword, int eol));
  24. int current_word __ARGS((oparg_T *oap, long count, int include, int bigword));
  25. int current_sent __ARGS((oparg_T *oap, long count, int include));
  26. int current_block __ARGS((oparg_T *oap, long count, int include, int what, int other));
  27. int current_par __ARGS((oparg_T *oap, long count, int include, int type));
  28. int linewhite __ARGS((linenr_T lnum));
  29. void find_pattern_in_path __ARGS((char_u *ptr, int dir, int len, int whole, int skip_comments, int type, long count, int action, linenr_T start_lnum, linenr_T end_lnum));
  30. int read_viminfo_search_pattern __ARGS((vir_T *virp, int force));
  31. void write_viminfo_search_pattern __ARGS((FILE *fp));
  32. /* vim: set ft=c : */
  33.